home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ IE Zone Descriptions.xpl < prev    next >
Text File  |  1999-07-16  |  1KB  |  43 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="4"
  4. "UIPATH"="Internet\Internet Explorer\Appearance\Zones"
  5. "NAME"="Zone Descriptions"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.31"
  8. "TEXT 1"="Zone #1 Desc"
  9. "TEXT 2"="Zone #2 Desc"
  10. "TEXT 3"="Zone #3 Desc"
  11. "TEXT 4"="Zone #4 Desc"
  12. "DESCRIPTION 1"="IE 4.0 and above divide the internet into different Zones. You can change the descriptions for this zones here."
  13. "DESCRIPTION 2"="To view these items, start Internet Explorer, select "Options" from the "View" menu and click on the "Security" tab."
  14. "AUTHOR"="Xteq Systems"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  17.  
  18. sPath="HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\"
  19. sValue="\Description"
  20. Sub Plugin_Initialize 
  21.  if RegPathExists(sPath) then
  22.   for l=1 to 4 
  23.    s=RegReadValue(sPath & l & sValue)
  24.    Call SetUIElement(l,s)
  25.   next
  26.  else
  27.   Disable
  28.  end if
  29. End Sub
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35.  for l=1 to 4
  36.   s=GetUIElement(l)
  37.   Call RegWriteValue(sPath & l & sValue,s,1)
  38.  next
  39. End Sub
  40.  
  41. Sub Plugin_Terminate 
  42. End Sub
  43.